home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cenvid9.zip / KEYCODE.BAT < prev    next >
DOS Batch File  |  1994-03-04  |  382b  |  9 lines

  1. @echo off
  2. REM ****************************************************
  3. REM *** KeyCode - Print values of characters pressed ***
  4. REM *** ver.1                                        ***
  5. REM ****************************************************
  6.  
  7. ECHO Press Key to see keyboard value; Press ESCAPE to exit
  8. cenvi do { key = getch(); printf("key=%%04X\n",key) } while(key != '\033')
  9.